.button {
  background-color: hsl(340, 61%, 22%);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: 'Jost', 'Arial';
  font-weight: Bold;
  transition-duration: 0.4s;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  margin: auto;
}

.button:hover {
  background-color: hsl(0, 0%, 0%);
}

.button a {
  color: white;
  text-decoration: none;
}

.button a:hover {
  color: white;
  text-decoration: none;
}

.faq-section {
  padding: 100px;
}

@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-section h2 {
  font-family: 'Jost', 'Arial';
  color: #641734;
  text-align: right;
  font-size: 2rem;
  padding: 0px;
  margin-left: 40px;
}

.faq-section img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  margin-bottom: 50px;
}

.faq {
  display: flex;
  align-items: center;
  border-radius: 100px;
  margin-top: 20px;
  margin-bottom: 50px;
  color: #000000;
  font-family: 'Jost', 'Arial';
  font-size: 1.8rem;
  background-color: rgb(231, 231, 231);
  padding: 20px;
  line-height: 1.8rem;
  opacity: 0;
  animation: fadeInFromLeft 1s ease-in forwards;
  transition: transform 0.3s ease-in-out;
}

.faq img:hover {
  transform: scale(1.05);
}

.faq img {
  width: 200px;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.question button {
  color: white;
}

.question h1 {
  margin-top: 0;
}

.question h2,
.question h3 {
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 40px;
  margin-right: 40px;
}

.question h3 {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #641734;
  line-height: 1.5;
  font-family: 'Platypi', 'Arial';
}

.question p {
  font-size: 1.2rem;
  margin-bottom: 18px;
  margin-left: 40px;
  margin-right: 40px;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
    /* Start opacity */
  }
  to {
    opacity: 1;
    /* End opacity */
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .faq-section {
    padding: 50px;
  }

  .faq-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-left: 0;
  }

  .faq-section img {
    width: 100%;
    max-width: 200px;
  }

  .faq {
    flex-direction: column;
    font-size: 1.5rem;
    padding: 30px;
  }

  .faq img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 20px auto;
  }

  .question h2,
  .question h3,
  .question p {
    margin-left: 20px;
    margin-right: 20px;
  }

  .question h3 {
    font-size: 1.2rem;
  }

  .question p {
    font-size: 1rem;
  }
}
